× Lesson 1 Lesson 2 Lesson 3 Lesson 4 Lesson 5 Lesson 6 Lesson 7 Lesson 8 Lesson 9 Lesson 10 Lesson 11 Lesson 12 Lesson 13 Lesson 14 Lesson 15 Lesson 16 Lesson 17 Lesson 18 Lesson 19 Lesson 20 Lesson 21 Lesson 22 Lesson 23 Lesson 24 Lesson 25 Mini Lesson 1 Mini Lesson 2 Mini Lesson 3 Mini Lesson 4 Mini Lesson 5

Lessons

Lesson 18 - List Comprehensions

In this lesson I want to introduce range() as well as list comprehensions. The range() function is useful to us when working with for loops and list comprehensions. The function has three parameters, start, stop, and step. Start is what number the range() starts at, and is defaulted at zero. Stop is the range of range(), or how many elements there are in the range(). Step is how many the range() counts by, defaults to 1. If you passed only one argument and used list(), the one argument passed would be for the stop parameter:

print(list(range(10)))

The output for this code would result in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] as since there was only one argument passed, start was defaulted to 0 and step was defaulted to 1. The number of elements in the list was equal to 10, as the argument passed to the parameter stop was 10.

Try to use the range() function with for loops. Create a for loop that will for every time iteration of the loop, the current value of the range() will be printed.

Now on to list comprehensions. List comprehension's main use case is as a way to create a new list based of another list. The following is the basic syntax for a list comprehension:

new_list = [i for i in old_list if (some condition(s))]

Here's a challenge using list comprehensions: Create a list that goes from one to 100, but only contains numbers that are divisible by 2, and either 5 or 10. Check for the solution at the bottom and compare answers. When your ready move on to the next lesson.